home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / math / symbol63.zip / HERON.IN < prev    next >
Text File  |  1996-03-07  |  153b  |  7 lines

  1. ; This is Heron's formula for the area (a1)
  2. ; of any triangle given sides a, b, and c.
  3. 2s = a+b+c
  4. a1 = (s*(s-a)*(s-b)*(s-c))^.5
  5. eliminate s
  6. group
  7.